home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK2.toast / Development Kits (Disc 2) / QuickDraw GX / Programming Stuff / Sample Code / Printing Samples / Extensions… / "kabooms" (global data info) ƒ / kaboom ƒ / kaboom.a < prev    next >
Encoding:
Text File  |  1996-03-20  |  503 b   |  29 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File: kaboom.a
  3. ;    
  4. ;    Assembly code (jump table) for a simple printing extension.
  5. ;    
  6. ;    Dave Hersey
  7. ;    Apple Developer Technical Support
  8. ;
  9. ;    2/01/93 - dmh - Created.
  10. ;    4/26/93 - dmh - Modified to work around b1 shutdown bug.
  11. ;    9/07/93 - dmh - Updated for b2.
  12. ;  12/18/93 - dmh - Updated for b3.
  13. ;
  14.  
  15.     EXPORT    EntryPoint                ; Our main entry point.
  16.     IMPORT    MyStartJob
  17.     IMPORT    MyFinishJob
  18.     
  19. EntryPoint    PROC
  20.     
  21.             DC.L    0                ; Reserved for owner count.
  22.     
  23.             JMP        MyStartJob
  24.             JMP        MyFinishJob
  25.  
  26.             ENDPROC
  27.  
  28.     END
  29.